Meeting Invite - Create a meeting invite
This API creates a meeting invite for a participant to join a scheduled webinar or meeting
Header Parameters
The content type should be application/json
You need an app created on the JioEvents Platform and using the app credentials you can create a JWT to access this API. The JWT should have an issuer and the key "app" with the app id generated from the Platform.
The accept type should be application/json
Request Body
The role of the invitee (e.g., "Co-Host", "Host", "Participant")
First name of the invitee
Last name of the invitee
Email address or identity of the invitee
Whether to send an email invite to the participant
The meeting ID for which the invite is being created
- 200
- 400
- 401
- 412
Success
Schema
Unique identifier for the meeting invite
The URL that the invitee can use to join the meeting
Unique hash for joining the meeting
First name of the invitee
Last name of the invitee
Email address of the invitee
The role assigned to the invitee
The meeting ID for which the invite was created
Unique identifier for the user
Whether the invite has been deleted
Array of social media links associated with the invitee
Whether the invitee has registered
Whether the invite has been sent
Whether to send an email invite
Whether to enable speaker tile for this participant
Order ID for the invite
Creation timestamp
Last modification timestamp
Version number
{
"_id": "mi-984037ef-b959-4210-998a-2be29c14e72b",
"joinUrl": "https://jioevents.com/meetingInvite/join/_tD6SZHCMQ50885cdde5341755725215006",
"joinHash": "_tD6SZHCMQ50885cdde5341755725215006",
"firstName": "Test",
"lastName": "user",
"emailId": "m48519891@gmail.com",
"role": "Co-Host",
"meetingId": "sm-ead69d8e-8c30-42f1-9798-8acfa5dd1277",
"userId": "u-17dbc620-b434-4ef4-bc77-412e41f71911",
"isDeleted": false,
"socialMediaLinks": [],
"registered": true,
"isInviteSent": false,
"sendInvite": true,
"enableSpeakerTile": true,
"orderId": 1,
"cOn": "2025-08-20T21:26:55.007Z",
"mOn": "2025-08-20T21:26:55.007Z",
"__v": 0
}
Example meeting invite response
{
"_id": "mi-984037ef-b959-4210-998a-2be29c14e72b",
"joinUrl": "https://jioevents.com/meetingInvite/join/_tD6SZHCMQ50885cdde5341755725215006",
"joinHash": "_tD6SZHCMQ50885cdde5341755725215006",
"firstName": "Test",
"lastName": "user",
"emailId": "m48519891@gmail.com",
"role": "Co-Host",
"meetingId": "sm-ead69d8e-8c30-42f1-9798-8acfa5dd1277",
"userId": "u-17dbc620-b434-4ef4-bc77-412e41f71911",
"isDeleted": false,
"socialMediaLinks": [],
"registered": true,
"isInviteSent": false,
"sendInvite": true,
"cOn": "2025-08-20T21:26:55.007Z",
"mOn": "2025-08-20T21:26:55.007Z",
"__v": 0
}
Schema
Status Code of the API
The error code of the API
The error message of the API
{
"customCode": 0,
"message": "string",
"errors": "string"
}
Schema
Status Code of the API
The error code of the API
The error message of the API
{
"customCode": 0,
"message": "string",
"errors": "string"
}
Schema
Status Code of the API
The error code of the API
The errors array which includes objects with a "property" and "message" properties describing the error
{
"customCode": 0,
"message": "string",
"errorsArray": [
null
]
}